Accusoft.OCRXpress.Java - Updated
Recognize Text in Different Languages
User Guide > How To ... > Recognize Text in Different Languages

OCRXpress for Java can recognize text in over 30 different languages. It is very simple to specify which language to use in the recognition process.

These are the three steps involved:

  1. Distribute the language files for the desired language into the tessdata directory.
  2. Set the language in the RecognitionParameters. Supported languages are documented in the Language enum:
    Copy Code
    RecognitionParameters parameters = new RecognitionParameters();
    parameters.setLanguage(Language.ITALIAN);
    
  3. Call one of the recognizeTo* methods to perform recognition in the desired language.